home *** CD-ROM | disk | FTP | other *** search
/ Software USA 4 #5 / Software USA Volume 4.05.iso / mac / Education / HTML Tricks / Extreme Mac HTML Tricks v2.1 / Extreme Mac HTML Tricks v2.1.rsrc / TEXT_138.txt < prev    next >
Text File  |  1996-10-31  |  994b  |  34 lines

  1.  
  2.  
  3.         In this chapter I'll show you some small tidbits of html that will will probably want to include on your web page.
  4.  
  5.     ‚Ä¢If you want to have a link that when a user clicks on it, a window is brought up for them to e-mail you, use this line of code:
  6. Just add in your e-mail address in place of the black text.
  7.  
  8. Send e-mail to <a href="mailto:webmaster@extreme-mac.com">webmaster@extreme-mac.com</a>
  9.  
  10. This will look like this:
  11.  
  12. Send e-mail to webmaster@extreme-mac.com
  13.  
  14.  
  15.     ‚Ä¢If you wish to add a comment into your html code, so that when people view the code, they will see the text, but it won't show up on your web page use this:
  16.  
  17. <!-----This web page and html code was made by Joel Mueller---->
  18.  
  19. (It doesn't matter how many '-----' dashes you have)
  20.  
  21.     ‚Ä¢To add many special characters that usually wouldn't be viewable if you just typed them in normal use these codes below:
  22.  
  23. Special Characters - 
  24. < = <
  25. > = >
  26. & = &
  27. " = "
  28. Trademark ‚Ñ¢ = ®
  29. Copyright ¬© = ©
  30.  
  31.  
  32.  
  33.  
  34.